package main

import (
	"fmt"
)

func Sqrt(x float64) float64 {

}

func main() {
	fmt.Println(Sqrt(2))
}
